-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
raft: rename raftLog.nextEnts to raftLog.nextCommittedEnts #14719
raft: rename raftLog.nextEnts to raftLog.nextCommittedEnts #14719
Conversation
Codecov Report
@@ Coverage Diff @@
## main #14719 +/- ##
==========================================
- Coverage 75.55% 75.53% -0.03%
==========================================
Files 457 457
Lines 37323 37321 -2
==========================================
- Hits 28201 28192 -9
- Misses 7354 7362 +8
+ Partials 1768 1767 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM (reviewed before on main PR) once @ahrtr is happy.
Also rename hasNextEnts to hasNextCommittedEnts. Also rename maxNextEntsSize to maxNextCommittedEntsSize. Pure refactor. Signed-off-by: Nathan VanBenschoten <[email protected]>
9337120
to
3711fde
Compare
@ahrtr thanks for the review, this should be good for another look. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank you @nvanbenschoten
Also rename
hasNextEnts
tohasNextCommittedEnts
.Also rename
maxNextEntsSize
tomaxNextCommittedEntsSize
.Extracted from #14627. cc. @tbg
Pure refactor.
Signed-off-by: Nathan VanBenschoten [email protected]
Please read https://github.com/etcd-io/etcd/blob/main/CONTRIBUTING.md#contribution-flow.